The Big Picture
PixelUp is pitching to investors next week. They need a professional, visual summary of all five creators' performance. Your job: turn the data into charts, then build a one-page dashboard.
Investors don't want to read rows of numbers โ they want to see the story. A well-built dashboard communicates in seconds what a spreadsheet takes minutes to understand.
Today you'll build PixelUp's investor pack using real data from the past six months.
Import the Performance Data
The L5 starter file contains six months of subscriber data and revenue figures for all five PixelUp creators.
starter.csv. Choose Replace current sheet and Comma separator.Bar Chart โ Total Revenue
Create a bar chart comparing total six-month revenue across all five creators. This is the headline figure investors will see first.
- Chart title: "PixelUp โ Total Revenue by Creator (6 months)"
- Horizontal axis title: "Total Revenue (ยฃ)"
- Bar colour: change to purple (custom hex
#7C3AED) - Legend: set to None (there's only one series, so a legend adds no value)
Pie Chart โ Revenue Streams
Create a pie chart showing how PixelUp's total revenue is split between ad revenue, sponsorships, and merch. Then decide: was this the right chart for this data?
A9: Ad Revenue B9: =SUM(O2:O6)
A10: Sponsorship B10: =SUM(P2:P6)
A11: Merch B11: =SUM(Q2:Q6)
- Chart title: "PixelUp โ Revenue by Stream"
- Slice label: set to "Percentage" so each slice shows its share
- Set pie colours to shades of violet and teal to distinguish slices clearly
Line Chart โ Subscriber Growth
Create a line chart showing how one creator's subscriber count changed month by month over six months. Line charts are the right tool when you want to show a trend over time.
B15: =C4 C15: =D4 D15: =E4 E15: =F4 F15: =G4 G15: =H4
- Chart title: "[Creator Name] โ Subscriber Growth (JanโJun)"
- Horizontal axis title: "Month"
- Vertical axis title: "Subscribers"
- Line colour: violet (
#7C3AED) - Enable Data labels to show the exact figure at each point
SPARKLINE โ Trends in a Cell
SPARKLINE is a Google Sheets function that draws a tiny chart inside a single cell. It's perfect for dashboards where you want to show a trend without needing a full chart.
You can pass options to SPARKLINE to control its appearance using a second argument in curly braces.
"linewidth",2})
โ Sets line colour to violet and makes it 2px thick
Build the Investor Dashboard
Create a new sheet called "Dashboard". Copy your key stats and charts onto it โ this is the one-page investor summary that tells the whole PixelUp story at a glance.
=Data!R2 โ total revenue
=Data!H2 โ June subscribers (latest month)
=SPARKLINE(Data!C2:H2,...) โ trend sparkline
- A clear title at the top
- A summary table with key figures (top-left or top-right)
- The bar chart as the primary visual (largest element)
- The pie chart and line chart as secondary visuals
- Charts should be consistently styled (matching colours)
Going Further
Instead of showing absolute subscriber numbers, create a new column that shows month-on-month change โ how many subscribers were gained (or lost) each month compared to the one before. Then use SPARKLINE with colour logic to show positive months in green and negative months in red.
Step 1 โ Calculate monthly change
T2: =D2-C2 Feb minus Jan
U2: =E2-D2 Mar minus Feb
V2: =F2-E2 Apr minus Mar
W2: =G2-F2 May minus Apr
X2: =H2-G2 Jun minus May
Copy down for all creators (rows 3โ6)
Step 2 โ SPARKLINE with colour thresholds
Y2: =SPARKLINE(T2:X2,{"charttype","bar";
"color1","#10B981";
"color2","#EF4444";
"negcolor","#EF4444"})
Add a column header "Monthly ฮ" (the delta symbol means "change"). Which creators had any declining months? Does this match what you'd expect from the line chart?
Rather than one total revenue figure per creator, create a grouped column chart showing all five creators' monthly revenue side by side for each month. This lets the investor see who is growing fastest month by month.
- Select columns A and IโN (Creator names + JanโJun Revenue) using Ctrl+Click on non-adjacent columns
- Insert โ Chart โ Column chart (not bar โ vertical this time)
- This gives a grouped column chart with one cluster per month, coloured per creator
- Move this chart onto your Dashboard alongside the others
- Does this chart replace or complement the bar chart you made in Task 2?
PixelUp โ Mission Accomplished!
You've built the full PixelUp investor dashboard โ and completed the entire spreadsheet modelling unit. Here's everything you've learned across the five lessons.
- Models separate inputs from calculations from outputs. Change an input, every output updates. That's the power.
- Cell references are everything. Absolute vs relative determines whether your model breaks when copied.
- Garbage in, garbage out. Validation protects the model from bad data entering in the first place.
- Charts should tell a story. The right chart type makes the data speak โ the wrong one misleads or confuses.
- Dashboards are designed for an audience. Every element should help the viewer understand faster โ not impress them with complexity.